home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / notify.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.0 KB  |  28 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef NOTIFYH
  7. #define NOTIFYH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TNotifyForm : public TForm
  15. {
  16. __published:    // IDE-managed Components 
  17.     TLabel *Label1;
  18.     TLabel *Label2;
  19.     TLabel *Label3;
  20. private:    // User declarations
  21. public:        // User declarations
  22.     virtual __fastcall TNotifyForm(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TNotifyForm *NotifyForm;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.